home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
iconv8_s.arc
/
TESTS.ARC
/
OVER.ICN
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-28
|
399 b
|
23 lines
procedure main()
if not(&features == "large integers") then
stop("large integers not supported")
i := 100000 + 10000
write(i)
i +:= 2 ^ 30
write(i)
i +:= i
write(i)
i := 100000 * 10000
write(i)
i +:= 2 ^ 30
write(i)
i *:= i
write(i)
i := -100000 - 10000
write(i)
i +:= -(2 ^ 30)
write(i)
i -:= 2 ^ 30
write(i)
end